home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 2: Applications
/
Linux Cubed Series 2 - Applications.iso
/
hamradio
/
tnos-2.000
/
tnos-2
/
daemon.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-05-05
|
608b
|
34 lines
#ifndef _DAEMON_H
#define _DAEMON_H
struct daemon {
const char *name;
unsigned stksize;
void (*fp) __ARGS((int,void *,void *));
};
#define NULLDAEMON ((struct daemon *)0)
extern struct daemon Daemons[];
#ifndef UNIX
/* In alloc.c: */
void gcollect __ARGS((int,void*,void*));
#endif
/* In main.c: */
void keyboard __ARGS((int,void*,void*));
#if 0
void network __ARGS((int,void *,void *));
#endif
#ifndef UNIX
void display __ARGS((int,void *,void *));
#endif
/* In kernel.c: */
void killer __ARGS((int,void*,void*));
/* In timer.c: */
void timerproc __ARGS((int,void*,void*));
#endif /* _DAEMON_H */